home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Mania 5
/
MacMania 5.toast
/
/
Tools&Utilities
/
Plotfoil 3.2
/
naca-1.0
/
Makehead.linux
< prev
next >
Wrap
Text File
|
1995-09-13
|
573b
|
41 lines
#-----------------------------------------------------------------------------
#
# Makefile made with makemake
#
# Linux Version
#
#-----------------------------------------------------------------------------
#
.SUFFIXES:
.SUFFIXES: .o .F .f .c
#
# Compiler names
#
CC = cc
FC = g77
AR = ar
RANLIB = ranlib
#
# Compiler flags
#
CFLAGS = -O
FFLAGS = -O
ARFLAGS = rv
LDFLAGS = -L. -lnaca
#
# Compile individual source files
#
.f.o:
$(FC) $(FFLAGS) -c $<
.c.o:
$(CC) $(CFLAGS) -c $<
#
# The f2c library seems to lack the exit() call
#
EXT = exit.o